home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if "%1" == "P" goto PRINTER
- if "%1" == "p" goto PRINTER
- if "%1" == "S" goto SCREEN
- if "%1" == "s" goto SCREEN
- echo To print the CIMplicity User's Manual on your printer, type:
- echo MANUAL P
- echo To display it on the screen (MORE.COM must be available), type:
- echo MANUAL S
- goto DONE
- :PRINTER
- type MANUAL.TXT >PRN
- goto DONE
- SCREEN
- type MANUAL.TXT | MORE
- :DONE